begintalkscript;
variables;
short choice,i;

begintalknode 1;
	state = -1;
	nextstate = 1;
	question = "Innkeeper";
	text1 = "_Can I get you another bowl of soup?_ The innkeeper inquired. I handed the half empty bowl to her without thinking, although I wasn't really hungry. I'm not sure how many bowls I'd already eaten.";
	text2 = "She poured the soup, then handed it back to me with a forced, awkward smile. She didn't seem like the friendly type, but she was trying hard enough.";

begintalknode 2;
	state = 1;
	nextstate = 2;
	question = "What am I doing here?";
	text1 = "_Your friend brought you in about.... oh.... three hours ago. Said you had a run in with some bandits, and needed caring for._";

begintalknode 3;
	state = 2;
	nextstate = 1;
	question = "My friend? Who are you talking about?";
	text1 = "_Tall warrior with brown hair and a long mustache, built like an ox-- sound familiar?_ Tall warrior.... Dim memories were beginning to return. I remembered leaning on the fellow's shoulders as we walked, but not much else."; 
	text2 = "The innkeeper rambled on, _I figure he must have cared pretty much about you, because he paid a small fortune for me to take care of you. Then he just took off. Don't know where he was going at this time of night..._";
	text3 = "I wondered to myself where he came from, and who this man was. These thoughts were pushed aside for the moment, though, as I suddenly remembered something very important.";
	text4 = "The package.";
	action = end_talk;
	code =
	set_flag(9,1,1);
	erase_char(28);
	activate_hidden_group(1);
break;